home *** CD-ROM | disk | FTP | other *** search
-
- ; Some simple macros I have deemed to make standard
- ; Matthew Goode - 2/1/97
-
- ; --------------------------------------------------------------
- SaveToStack Macro
- ;Places \1 on the stack area
-
- movem.l \1,-(sp)
- EndM
-
- LoadFromStack Macro
- ;Retrieves \1 from the stack area
-
- movem.l (sp)+,\1
- EndM
-
- ; --------------------------------------------------------------
-
- TestLMB_m macro
- ;Test the left mouse button
- ;Bne if button not held down
- btst #6,$bfe001
- endm
-
- ; --------------------------------------------------------------
- Test macro
- ;Flashes col 0 as a test indicator
- move.w #$fff,$dff180
- endm
-
-